From 50ae0b8f02c034e60d4cbb504620dfa1575a836f Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 28 Jul 2025 09:19:42 +0000 Subject: (박서영) 설계 document Numbering Rule 개발-최겸 업로드 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../(engineering)/docu-list-rule/layout.tsx | 69 ++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 app/[lng]/engineering/(engineering)/docu-list-rule/layout.tsx (limited to 'app/[lng]/engineering/(engineering)/docu-list-rule/layout.tsx') diff --git a/app/[lng]/engineering/(engineering)/docu-list-rule/layout.tsx b/app/[lng]/engineering/(engineering)/docu-list-rule/layout.tsx new file mode 100644 index 00000000..25023e4b --- /dev/null +++ b/app/[lng]/engineering/(engineering)/docu-list-rule/layout.tsx @@ -0,0 +1,69 @@ +import { Metadata } from "next" + +import { Separator } from "@/components/ui/separator" +import { SidebarNav } from "@/components/layout/sidebar-nav" + +export const metadata: Metadata = { + title: "Document Numbering Rule", +} + + + +export default async function DocumentNumberingLayout({ + children, + params, +}: { + children: React.ReactNode + params: { lng: string } +}) { + const resolvedParams = await params + const lng = resolvedParams.lng + + const sidebarNavItems = [ + { + title: "Document Class 관리", + href: `/${lng}/engineering/docu-list-rule/document-class`, + }, + { + title: "Code Group 정의", + href: `/${lng}/engineering/docu-list-rule/code-groups`, + }, + { + title: "Combo Box 설정", + href: `/${lng}/engineering/docu-list-rule/combo-box-settings`, + }, + { + title: "Number Type 관리", + href: `/${lng}/engineering/docu-list-rule/number-types`, + }, + { + title: "Number Type별 설정", + href: `/${lng}/engineering/docu-list-rule/number-type-configs`, + }, + ] + + return ( + <> +
+
+
+
+

Document Numbering Rule (해양)

+

+ 벤더 제출 문서 리스트 작성 시에 사용되는 넘버링 +

+
+ + +
+ +
{children}
+
+
+
+
+ + ) +} \ No newline at end of file -- cgit v1.2.3